CP2104 MINI D1 ESP32 ESP-32S WIFI + Bluetooth Module (CP2104 UART )

CP2104 MINI D1 ESP32 ESP-32S WIFI + Bluetooth Module (CP2104 UART )
CP2104 MINI D1 ESP32 ESP-32S WIFI + Bluetooth Module (CP2104 UART )CP2104 MINI D1 ESP32 ESP-32S WIFI + Bluetooth Module (CP2104 UART )CP2104 MINI D1 ESP32 ESP-32S WIFI + Bluetooth Module (CP2104 UART )
รหัสสินค้า M1879
หมวดหมู่ ESP32 ESP-32
ราคา 250.00 บาท
น้ำหนัก 40 กรัม
สถานะสินค้า พร้อมส่ง
ลงสินค้า 27 มี.ค. 2561
อัพเดทล่าสุด 3 ธ.ค. 2567
จำนวน
ชิ้น
หยิบลงตะกร้า
บัตรประชาชน
บุ๊คแบ๊งค์
คุ้มครองโดย LnwPay


NodeMCU-32S

ESP32 (WROOM32) is already integrated antenna and RF balun, power amplifier, low-noise amplifiers, filters, 
and power management module. The entire solution takes up the least amount of printed circuit board area.
This board is used with 2.4 GHz dual-mode Wi-Fi and Bluetooth chips by TSMC 40nm low power technology,
power and RF properties best, which is safe, reliable, and scalable to a variety of applications.
 
Features:
 

High performance-price ratio
Small volume, easily embeded to other products
Strong function with support LWIP protocol, Freertos
Supporting three modes: AP, STA, and AP+STA
Supporting Lua program, easily to develop
https://espressif.com/en/esp-wroom-32/resources
http://esp32.net/
Development Board: https://github.com/Nicholas3388/LuaNode 
https://github.com/SmartArduino/SZDOITWiKi/wiki/ESP8266---ESP32

NodeMCU: https://github.com/nodemcu/nodemcu-firmware/tree/dev-esp32

Arduino: https://github.com/espressif/arduino-esp32


Package included:

1 x ESP32 Development Board








 
https://www.youtube.com/watch?v=_eu39u45XVk
 
https://www.youtube.com/watch?v=SC7S4DXWpBI
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ESP32 #32: ESP32 Smart LED Prototype + ESP32 Giveaway



 

*

1.4.1 CPU and Memory

  • Xtensa® single-/dual-core 32-bit LX6 microprocessor(s), up to 600 DMIPS (200 DMIPS for single-core microprocessor)
  • 448 kB ROM
  • 520 kB SRAM
  • 16 kB SRAM in RTC
  • QSPI flash/SRAM, up to 4 x 16 MB
  • Power supply: 2.3V to 3.6V
1.4.2 Clocks and Timers
  • Internal 8 MHz oscillator with calibration
  • Internal RC oscillator with calibration
  • External 2 MHz to 60 MHz crystal oscillator (40 MHz only for Wi-Fi/BT functionality)
  • External 32 kHz crystal oscillator for RTC with calibration
  • Two timer groups, including 2 x 64-bit timers and 1 x main watchdog in each group
  • RTC timer with sub-second accuracy
  • RTC watchdog
1.4.3 Advanced Peripheral Interfaces 
  • 12-bit SAR ADC up to 18 channels 
  •  2 × 8-bit DAC 
  • 10 × touch sensors 
  • Temperature sensor 
  • 4 × SPI 
  • 2 × I2S 
  • 2 × I2C 
  • 3 × UART 
  • 1 host (SD/eMMC/SDIO) 
  • 1 slave (SDIO/SPI) 
  • Ethernet MAC interface with dedicated DMA and IEEE 1588 support 
  • CAN 2.0 
  • IR (TX/RX) 
  • Motor PWM 
  • LED PWM up to 16 channels 
  • Hall sensor Espressif Systems
  • Ultra-low-noise analog pre-amplifier 
1.4.4 Security 

  • IEEE 802.11 standard security features are all supported, including WFA, WPA/WPA2 and WAPI 
  • Secure boot 
  • Flash encryption 
  • 1024-bit OTP, up to 768-bit for customers 
  • Cryptographic hardware acceleration: 
    • – AES      
    • – HASH (SHA-2) library
    • – RSA 
    • – ECC 
    • – Random Number Generator (RNG)
1.4.5 Development Support
  • SDK firmware for fast online programming 
  • Open-source toolchains based on GCC
1.5 Applications 
• Generic low-power IoT sensor hub
• Generic low-power IoT loggers
• Video streaming from camera
• Over The Top (OTT) devices
• Music players
 – Internet music players
– Audio streaming devices
• Wi-Fi-enabled toys
– Loggers
– Proximity sensing toys
• Wi-Fi-enabled speech recognition devices
• Audio headsets
• Smart power plugs
• Home automation
• Mesh network
• Industrial wireless control
• Baby monitors
• Wearable electronics
• Wi-Fi location-aware devices
• Security ID tags
• Healthcare
– Proximity and movement-monitoring trigger devices
– Temperature-sensing loggers
• 16 kB SRAM in RTC
• QSPI flash/SRAM, up to 4 x 16 MB
• Power supply: 2.3V to 3.6V

1.4.2 Clocks and Timers

• Internal 8 MHz oscillator with calibration
• Internal RC oscillator with calibration
• External 2 MHz to 60 MHz crystal oscillator (40 MHz only for Wi-Fi/BT functionality)
• External 32 kHz crystal oscillator for RTC with calibration
• Two timer groups, including 2 x 64-bit timers and 1 x main watchdog in each group
• RTC timer with sub-second accuracy
• RTC watchdog
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/*
* There are three serial ports on the ESP known as U0UXD, U1UXD and U2UXD.
*
* U0UXD is used to communicate with the ESP32 for programming and during reset/boot.
* U1UXD is unused and can be used for your projects. Some boards use this port for SPI Flash access though
* U2UXD is unused and can be used for your projects.
*
*/
 
#define RXD2 16
#define TXD2 17
 
void setup() {
  // Note the format for setting a serial port is as follows: Serial2.begin(baud-rate, protocol, RX pin, TX pin);
  Serial.begin(115200);
  //Serial1.begin(9600, SERIAL_8N1, RXD2, TXD2);
  Serial2.begin(9600, SERIAL_8N1, RXD2, TXD2);
  Serial.println("Serial Txd is on pin: "+String(TX));
  Serial.println("Serial Rxd is on pin: "+String(RX));
}
 
void loop() { //Choose Serial1 or Serial2 as required
  while (Serial2.available()) {
    Serial.print(char(Serial2.read()));
  }
}

วิธีการชำระเงิน

ธนาคารกรุงเทพ จำกัด (มหาชน) สาขาบิ๊กซี รามคำแหง สะสมทรัพย์
ธนาคารไทยพาณิชย์ จำกัด (มหาชน) สาขาคลองจั่น ออมทรัพย์
บมจ. ธนาคารกรุงไทย สาขาเดอะมอลล์บางกะปิ ออมทรัพย์
บมจ. ธนาคารกสิกรไทย สาขาโลตัส บางกะปิ ออมทรัพย์
พร้อมเพย์ สาขา- mobile
Scan this!
กิตติ แซ่เอี้ยว
096-xxxxxx-3
Accept All Banks | รับเงินได้จากทุกธนาคาร
  • ค่าธรรมเนียม 3.9% + 11 THB
  • การชำระผ่าน PayPal คุณไม่จำเป็นต้องแจ้งชำระเงิน เนื่องจากระบบจะจัดการให้คุณทันที ที่คุณชำระเงินเสร็จสมบูรณ์

CATEGORY

TRACKCODE

  • ค้นหา
*ใส่ เบอร์มือถือ หรือ email ที่ใช้ในการสั่งซื้อ

CONTACT US

096-898-2243

STATISTICS

หน้าที่เข้าชม5,181,193 ครั้ง
ผู้ชมทั้งหมด1,580,533 ครั้ง
ร้านค้าอัพเดท22 ต.ค. 2568

MEMBER

Join เป็นสมาชิกร้านค้า

ร้านmcucity
ร้านmcucity
/www.mcucity.com/
Join เป็นสมาชิกร้าน
815
สมัครสมาชิกร้านนี้ เพื่อรับสิทธิพิเศษ
ติดตามร้านของเราผ่านแอพได้แล้ววันนี้
  • พิมพ์ “mcucity” ในช่อง Search
  • หรือเข้าจากรายการร้านค้าโปรดของฉัน
พูดคุย-สอบถาม